@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.pad20{padding: 0px 20px;}
.medium-font {
    font-size: 1.5rem;
    color: #e94e77; /* Modern pink color */
    margin-bottom: 20px;
}
.container-pic img {width: 100%; height: auto;}

.container-pic {
 max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.main-c {
    background-color: #fff;
    /* Padding and box-shadow commented out */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* Adjust padding as needed */
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}

.text-container {
    flex: 2;
    padding: 10px;
    color: #333; /* Dark grey text for better readability */
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #0F0F0F;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

 header {
    position: relative; /* Ensure z-index applies */
    z-index: 10; /* Higher z-index to stay on top */
}

nav {
    z-index: 10; /* Ensure it remains above other elements */
}

.slideshow {
    position: relative;
    z-index: 1; /* Keep the slideshow background below */
}
     body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background: #1a1a1a;
            color: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .nav-toggle span {
            background: white;
            height: 3px;
            margin: 4px 0;
            width: 25px;
        }
        nav {
            display: flex;
            gap: 1rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        nav a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }
            nav {
                display: none;
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a1a1a;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 1rem;
                border-top: 1px solid #333;
            }
        }
        .slideshow {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: fade 12s infinite;
        }
        @keyframes fade {
            0%, 33% { opacity: 1; }
            33.1%, 100% { opacity: 0; }
        }
        .slide:nth-child(1) { background-image: url('../images/banner/mark roberts magic show.png'); animation-delay: 0s; }
        .slide:nth-child(2) { background-image: url('../images/banner/preston/preston corporate magician.png'); animation-delay: 4s; }
        .slide:nth-child(3) { background-image: url('../images/banner/magic show/sleight of hand magician mark roberts.png'); animation-delay: 8s; }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .hero-content a {
            background: #ff4d4d;
            color: white;
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
        }
        .hero-content a:hover {
            background: #e63e3e;
        }
        .section {
            padding: 1rem 2rem;
            text-align: center;
        }
        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .section p {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: #666;
        }
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 300px;
        }
        .card img {
            width: 100%;
            height: auto;
        }
        .card h3 {
            font-size: 1.5rem;
            margin: 1rem;
        }
        .card p {
            margin: 0 1rem 1rem;
            color: #666;
        }
        .card a {
            display: block;
            text-align: center;
            background: #1a1a1a;
            color: white;
            padding: 1rem;
            text-decoration: none;
            font-weight: bold;
        }
        .card a:hover {
            background: #333;
        }
      


   .bookings-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
}

.text-content, .image-content {
    flex: 1 1 100%;
    max-width: 600px;
    padding: 20px;
}

.text-content {
    order: 1;
}

.image-content {
    order: 2;
    text-align: center;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2980b9;
}

.text-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.text-content p strong {
    color: #34495e;
}
/* Image Styling */
.image-container {
    flex: 1;
    padding: 10px;
}
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .bookings-section {
        flex-wrap: nowrap;
    }

    .text-content, .image-content {
        flex: 1;
        max-width: 50%;
        padding: 40px;
    }

    .text-content {
        order: 1;
    }

    .image-content {
        order: 2;
    }
}

@media (max-width: 767px) {
    .text-content, .image-content {
        max-width: 100%;
    }
}



.posteredges {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px; /* Rounded corners for modern look */
    border: 4px solid #0E0E0E; /* Border to match button color */
}
/* review css */
.review-cta {
    /*background-color: #f4f4f4;*/
    padding: 0px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
}

.review-cta h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.review-cta p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.review-cta .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #0f0f0f;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.review-cta .button:hover {
    background-color: #0a0a0a;
}

.bookings-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
}

.event-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.event-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #34495e;
}

.event-list li i {
    margin-right: 10px;
    color: #0A0A0A;
}

.posteredges {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px; /* Rounded corners for modern look */
    border: 4px solid #0E0E0E; /* Border to match button color */
}

/* Text Container Styling */
.text-container {
    flex: 2;
    padding: 10px;
    color: #333; /* Dark grey text for better readability */
}

.xlarge-font {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.medium-font {
    font-size: 1.5rem;
    color: #e94e77; /* Modern pink color */
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    color: #555; /* Slightly lighter grey for emphasis */
}

p {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.6;
}

.youtube-icon {
    width: 200px;
    height: auto;
    vertical-align: middle;
}

.stage-performance {
  position: relative;
  background-image: url('../images/banner/southport/southport comedy magic show.png'); /* Replace with your stage-themed image */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.stage-performance .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
}

.stage-performance .text-container h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	color: #fff;
}

.stage-performance .text-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
	color: #fff;
}

.stage-performance .text-container a .button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #e63946; /* Vibrant red button */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.stage-performance .text-container a .button:hover {
  background-color: #d62828; /* Darker red on hover */
  transform: translateY(-2px);
}
